ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexPieBase<T> Class / SelectedItemPosition Property






In This Topic
    SelectedItemPosition Property (FlexPieBase<T>)
    In This Topic
    Gets or sets the position of the selected slice.
    Syntax
    'Declaration
     
    
    Public Property SelectedItemPosition As Position
    'Usage
     
    
    Dim instance As FlexPieBase(Of T)
    Dim value As Position
     
    instance.SelectedItemPosition = value
     
    value = instance.SelectedItemPosition
    public Position SelectedItemPosition {get; set;}
    public read-write property SelectedItemPosition: Position; 
    public function get,set SelectedItemPosition : Position
    public: __property Position get_SelectedItemPosition();
    public: __property void set_SelectedItemPosition( 
       Position value
    );
    public:
    property Position SelectedItemPosition {
       Position get();
       void set (    Position value);
    }
    Remarks
    Setting this property to a value other than 'None' causes the pie to rotate when an item is selected. Note that in order to select slices by clicking the chart, you must set theselectionMode property to "Point".
    See Also